Hilbert space
希尔伯特空间,
Hilbert 空间,
Hilbertscher Raum
Definition
A Hilbert space is a vector space with inner product such that the norm defined by turns into a complete metric space
(i.e. complete inner product space, whereas an inner product space may be known as a pre-Hilbert space)
Lean4 definition
A Hilbert space is a complete normed inner product space.
@[variable_alias]
structure HilbertSpace (𝕜 E : Type*) [RCLike 𝕜]
[NormedAddCommGroup E] [InnerProductSpace 𝕜 E] [CompleteSpace E]
(RCLike: real or complex , NormedAddCommGroup: normed group, InnerProductSpace: extension of NormedSpace and Inner inner product, CompleteSpace: complete metric space)
Notes
- examples:
- real numbers with vector dot product of and
References
- https://en.wikipedia.org/wiki/Hilbert_space
- https://ncatlab.org/nlab/show/Hilbert+space
- https://ncatlab.org/nlab/show/an+elementary+treatment+of+Hilbert+spaces
- https://www.bananaspace.org/wiki/Hilbert_空间
- https://old.reddit.com/r/learnmath/comments/p4rzld/eli5_what_is_hilbert_space/
- https://mathworld.wolfram.com/HilbertSpace.html
- https://people.eecs.berkeley.edu/~bartlett/courses/281b-sp08/7.pdf
- https://leanprover-community.github.io/mathlib4_docs/Mathlib/Analysis/InnerProductSpace/Defs.html#HilbertSpace